@import url('https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap');

.home {
      background-color: #333;
      text-align: center;
      align-items: center;
      color: white;
      margin-top: 200px;
      font-family: 'Noto Sans', sans-serif;
}

.bc {
      background-color: white;
      margin-left: 150px;
      margin-right: 150px;
      border-radius: 25px;
      padding-top: 15px;
      box-shadow: 1px 1px 25px lime;
}

.playbtn {
      text-decoration: none;
      color: white;
      background-color: lime;
      padding: 25px 70px;
      font-size: 25px;
      border-radius: 25px;
      border: 5px solid white;
      text-shadow: 1px 1px 1px black;
      font-weight: bold;
      box-shadow: 1px 1px 25px lime;
      transition: 1s;
}

.playbtn:hover {
      background-color: limegreen;
      box-shadow: 1px 1px 25px limegreen;
}

.playbtnd {
      margin-top: 50px;
}

.talk {
      color: black;
}

@media (max-width: 768px) {
      .bc {
            margin: 0;
            padding: 20px;
      }
}